home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / ArchiveUtils / JumpBack / Source / Makefile.postamble < prev    next >
Encoding:
Makefile  |  1995-06-12  |  431 b   |  22 lines

  1.  
  2. WRITEABLE= file_writable
  3. $(WRITEABLE)::    $(WRITEABLE).c
  4.     $(CC) $(CFLAGS) $(WRITEABLE).c -o $(WRITEABLE)
  5.     
  6. install::
  7.         $(STRIP) $(DYLD_APP_STRIP_OPTS) $(DSTROOT)$(INSTALLDIR)/$(NAME).app/$(WRITEABLE); 
  8.  
  9. .SUFFIXES: .strings
  10.  
  11.  
  12. .h.strings:
  13.     if [ "$*" = "Localization" ]; then \
  14.         /usr/bin/genstrings  $*.h > English.lproj/$*.strings; \
  15.     else \
  16.         /usr/bin/genstrings -o English.lproj $*.h;  \
  17.     fi
  18.  
  19.  
  20. clean::
  21.     rm English.lproj/*.strings
  22.